home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 1 / The Arsenal Files (Arsenal Computer).ISO / bbs / tm0105.txt < prev    next >
Text File  |  1994-01-23  |  5KB  |  108 lines

  1. SEA Technical Memorandum #0105, Using SEAdog with RBBS
  2. Contributed by: Charles R. Lekowski
  3. Last updated: February 15, 1989
  4. Copyright 1989 by System Enhancement Associates, Inc.
  5.  
  6.  
  7.  
  8.                            Using SEAdog With RBBS
  9.  
  10.  
  11. This document describes how to interface RBBS-PC version 17.1 with the 
  12. SEAdog network mail system.  
  13.  
  14. Beginning with version 15.1C, RBBS-PC is capable of supporting the use of 
  15. NetMail. By using netmail, a sysop can open a whole new world to his users 
  16. that they never dreamed was possible. Now BBS's numbering over 3000+ can 
  17. connect their systems over a vast electronic mail network all across the 
  18. world.  
  19.  
  20. SEAdog is a full-featured electronic mail system based on the personal 
  21. computer and using standard telephone lines. It is a sophisticated store-
  22. and-forward mail system which can be configured in a virtually unlimited 
  23. number of network topologies (more on this later). Unlike some networks, 
  24. the end user never need concern himself with network routing as it all 
  25. happens automatically. The user just enters and retrieves messages, SEAdog 
  26. takes care of the details.  
  27.  
  28. The hardware necessary to run RBBS-PC is sufficient to run SEAdog. The 
  29. heart of SEAdog is the network mail server, MAILER.EXE. This is the program 
  30. that places and receives phone calls, handles message routing, and so 
  31. forth.  
  32.  
  33. SEAdog may be invoked in one of two ways. The first, and most preferred 
  34. method is to have SEAdog load RBBS-PC. This way parameters such as Time and 
  35. Baud rate are passed to the batch file that loads the BBS. These parameters 
  36. will adjust the time that a user usually gets on the system to allow for an 
  37. upcoming mail event as well as telling the BBS the baud rate of the caller.  
  38.  
  39. To set RBBS-PC up in this manner, two parameters must be changed in the 
  40. RBBS-PC.DEF configuration file. The first option is to tell RBBS-PC how it 
  41. will recycle after a caller logs off. Parameter 163 is where you would 
  42. define this option. The default for this would be set to "INTERNAL" where 
  43. RBBS would return back to the sysop menu screen. If you specify "SYSTEM", 
  44. then RBBS-PC will exit to DOS and will re-invoke SEAdog. The second option 
  45. is to let RBBS-PC drop to DOS at a time when telephone costs are lower and 
  46. invoke the mailer so that it begins placing phone calls to other SEAdog 
  47. systems to pass them your outgoing mail and receive incoming phone calls.  
  48. Parameter 261 allows the sysop to specify what time of day that RBBS-PC is 
  49. supposed to drop to DOS.  
  50.  
  51. Parameter 262 is used to allow RBBS-PC to handle "store-and-forward" mail 
  52. of messages and files. This option is set to "SEADOG" to tell RBBS-PC that 
  53. a front end mailer is being used in conjunction with RBBS-PC.  
  54.  
  55. This document is not intended to replace the SEAdog manual, but rather to 
  56. provide information that an RBBS sysop would find useful when configuring 
  57. RBBS-PC to run with SEAdog. A separate program, such as SMLNET.EXE by 
  58. Darwin Collins or NETMAIL.EXE by Rod Bowman, is required for the BBS users 
  59. to be able to read and enter the netmail/echomail messages, since the 
  60. SEAdog message base format is not yet compatible with RBBS-PC.  
  61.  
  62.  
  63. The SEAdog mailer must be told to pass non-mail callers (i.e. humans) to 
  64. RBBS.  This is done with the BBS statement in the CONFIG.DOG file, like so: 
  65.  
  66.     BBS RBBS-PC 1 RBBS-PC.DEF /*T /*B
  67.  
  68. This tells the SEAdog mailer to load RBBS directly.  This is the simplest 
  69. method, but it does not allow for doors or for sysop drop-to-DOS functions.  
  70.  
  71. Doors ard remote sysop functions can be handled by using a batch file, like 
  72. this:
  73.  
  74.     :Loop
  75.     CD/RBBS
  76.     If exist Rctty.Bat del Rctty.Bat
  77.     RBBS-PC /%1 /%2
  78.     If not exist Rctty.Bat goto EXIT
  79.     Rctty.Bat
  80.     Goto LOOP
  81.     :Exit
  82.     CD/MAIL
  83.  
  84.  
  85. If this batch file is named RBBS.BAT, then the following statement must be 
  86. in your CONFIG.DOG file:
  87.  
  88.     BBS C:\RBBS *T *B
  89.  
  90.  
  91. SEAdog's default banner states that it is a private mail system, and asks 
  92. the caller to hang up.  You will want to change this.  You can use either 
  93. or both of two methods.  The first is the BANNER statement in your 
  94. configuration file.  Whatever follows the word "BANNER", up to the end of 
  95. the line or a semicolon, is displayed instead of the default banner.  A 
  96. typical example might be: 
  97.  
  98.     BANNER SEAboard system -- stand by for RBBS
  99.  
  100. You can also create a text file named BANNER.DOG, which will be displayed 
  101. instead of the banner string to any callers outside of mail events.  This 
  102. file may contain anything you like, and may be as long as you like, but we 
  103. recommend that you keep it short, as SEAdog banners cannot be interrupted.  
  104.  
  105.  
  106. RBBS-PC is copyrighted by Tom Mack, and is distributed by the Capitol PC 
  107. Users Group.
  108.